home *** CD-ROM | disk | FTP | other *** search
- on mouseUp me
- global glanguage
- if the machineType <> 256 then
- case 1 of
- ((the currentSpriteNum = 4) or (the currentSpriteNum = 13)):
- glanguage = "SP"
- castLib(2).fileName = the moviePath & "data:sptx"
- ((the currentSpriteNum = 5) or (the currentSpriteNum = 14)):
- glanguage = "GB"
- castLib(2).fileName = the moviePath & "data:gbtx"
- ((the currentSpriteNum = 6) or (the currentSpriteNum = 15)):
- glanguage = "NL"
- castLib(2).fileName = the moviePath & "data:nltx"
- ((the currentSpriteNum = 7) or (the currentSpriteNum = 16)):
- glanguage = "FR"
- castLib(2).fileName = the moviePath & "data:frtx"
- ((the currentSpriteNum = 8) or (the currentSpriteNum = 17)):
- glanguage = "DL"
- castLib(2).fileName = the moviePath & "data:dltx"
- end case
- else
- case 1 of
- ((the currentSpriteNum = 4) or (the currentSpriteNum = 13)):
- glanguage = "SP"
- castLib(2).fileName = the moviePath & "data/sptx"
- ((the currentSpriteNum = 5) or (the currentSpriteNum = 14)):
- glanguage = "GB"
- castLib(2).fileName = the moviePath & "data/gbtx"
- ((the currentSpriteNum = 6) or (the currentSpriteNum = 15)):
- glanguage = "NL"
- castLib(2).fileName = the moviePath & "data/nltx"
- ((the currentSpriteNum = 7) or (the currentSpriteNum = 16)):
- glanguage = "FR"
- castLib(2).fileName = the moviePath & "data/frtx"
- ((the currentSpriteNum = 8) or (the currentSpriteNum = 17)):
- glanguage = "DL"
- castLib(2).fileName = the moviePath & "data/dltx"
- end case
- end if
- go("main")
- end
-